home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 1998 September
/
CHIP NET Rehberi Eylül 1998.iso
/
ftp
/
iftp21
/
EXAMPLES.ZIP
/
WEBSITE.FTP
< prev
Wrap
Text File
|
1997-05-23
|
901b
|
34 lines
;---------------------------------------------------------
; iFTP script for WEB SITE
;---------------------------------------------------------
;DEBUG ON
log Logging into FTP WEBSITE site.....
OPEN website
if not success goto error
;----------------------------------------------------------
; check for local files to send to ftp site
;----------------------------------------------------------
LABEL step1
log Step 1: Check for local files to send...
if not exist websend\*.* goto success
put websend\*.* /kill
if not success goto error
goto success
;---------------------------------------------------------------
LABEL success
log Successful session!
goto end
;---------------------------------------------------------------
LABEL error
WriteError
goto end
;---------------------------------------------------------------
LABEL end